home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / MATH / PRAXIS.ZIP / MACHINE.H next >
C/C++ Source or Header  |  1987-07-22  |  261b  |  12 lines

  1. #ifdef MSDOS        /* 80x87 math chip microsoft C     */
  2. #define EPSILON 1.0e-10
  3. #define SQREPSILON 1.0e-20
  4. #else            /* vax 11/750 unix cc        */
  5. #define EPSILON 1.0e-8
  6. #define SQREPSILON 1.0e-16
  7. #endif
  8.  
  9. /* dimension of arrays - can be increased*/
  10. #define N 20
  11.  
  12.